SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 66466: Incorrect data might be inserted into a PostgreSQL table when you use the BULKLOAD option

DetailsHotfixAboutRate It

A SAS data set that contains character data with one or more backslash (\) characters and 8-bit characters might be inserted incorrectly into a PostgreSQL table when you use bulk-load functionality. This issue happens when you run SAS with single-byte encoding such as Latin1.

For example, when you run the following code, a character variable that contains ÅBCDE\F\G is incorrectly inserted into the PostgreSQL table as ÅBCDEFFGG:

data test_bulkload;
length str $256 ;
str='ÅBCDE\F\G';
run;
libname pglib postgres server="mypg.server.com" user=myuser password=mypasswd database=db  port=5432;
proc append force
  base=PGLIB.test_bulkload (BULKLOAD=YES BL_DELIMITER=',' BL_ESCAPE=ON BL_PSQL_PATH='/sashome/SASWebInfrastructurePlatformDataServer/9.4/bin/psql')
  data=test_bulkload;
run;

You can circumvent the problem by running SAS with UTF-8 encoding or setting BULKLOAD=NO.

Click the Hot Fix tab in this note to access the hot fix for this issue.



Operating System and Release Information

Product FamilyProductSystemSAS Release
ReportedFixed*
SAS SystemSAS/ACCESS Interface to PostgreSQLMicrosoft® Windows® for x649.4 TS1M69.4 TS1M7
Microsoft Windows 8 Enterprise 32-bit9.4 TS1M69.4 TS1M7
Microsoft Windows 8 Enterprise x649.4 TS1M69.4 TS1M7
Microsoft Windows 8 Pro 32-bit9.4 TS1M69.4 TS1M7
Microsoft Windows 8 Pro x649.4 TS1M69.4 TS1M7
Microsoft Windows 8.1 Enterprise 32-bit9.4 TS1M69.4 TS1M7
Microsoft Windows 8.1 Enterprise x649.4 TS1M69.4 TS1M7
Microsoft Windows 8.1 Pro 32-bit9.4 TS1M69.4 TS1M7
Microsoft Windows 8.1 Pro x649.4 TS1M69.4 TS1M7
Microsoft Windows 109.4 TS1M69.4 TS1M7
Microsoft Windows Server 2012 Datacenter9.4 TS1M69.4 TS1M7
Microsoft Windows Server 2012 R2 Datacenter9.4 TS1M69.4 TS1M7
Microsoft Windows Server 2012 R2 Std9.4 TS1M69.4 TS1M7
Microsoft Windows Server 2012 Std9.4 TS1M69.4 TS1M7
Microsoft Windows Server 20169.4 TS1M69.4 TS1M7
Microsoft Windows Server 20199.4 TS1M69.4 TS1M7
Windows 7 Enterprise 32 bit9.4 TS1M69.4 TS1M7
Windows 7 Enterprise x649.4 TS1M69.4 TS1M7
Windows 7 Home Premium 32 bit9.4 TS1M69.4 TS1M7
Windows 7 Home Premium x649.4 TS1M69.4 TS1M7
Windows 7 Professional 32 bit9.4 TS1M69.4 TS1M7
Windows 7 Professional x649.4 TS1M69.4 TS1M7
Windows 7 Ultimate 32 bit9.4 TS1M69.4 TS1M7
Windows 7 Ultimate x649.4 TS1M69.4 TS1M7
64-bit Enabled AIX9.4 TS1M69.4 TS1M7
64-bit Enabled Solaris9.4 TS1M69.4 TS1M7
HP-UX IPF9.4 TS1M69.4 TS1M7
Linux for x649.4 TS1M69.4 TS1M7
Solaris for x649.4 TS1M69.4 TS1M7
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.